home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDITOR
/
AMAC44.ARJ
/
QMACB.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-09-30
|
301b
|
13 lines
@echo off
rem qmacB.bat Sun 09-30-1990
cls
echo Converts %1.QM (text) To %1.MAC (binary)
if not exist %1.QM goto NOTEXIST
QMAC %1.MAC %1.QM /B /A- %2 %3
goto END
:NOTEXIST
echo %1.QM does not exist
:END